home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6584 / 6584.xpi / chrome / flashvideodownloader / content / lic.xul < prev    next >
Extensible Markup Language  |  2009-06-24  |  796b  |  33 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
  3.  
  4. <window title="Flash Video Downloader License"
  5.         xmlns:html="http://www.w3.org/1999/xhtml"
  6.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         onload="FlashVDLic.loadData();"
  8.         >
  9.     <!-- onload="showGrid();" -->
  10.  
  11. <script type="application/x-javascript" src="lic.js"/>
  12.  
  13.  
  14. <groupbox flex="1">
  15.     <caption label="Flash Video Downloader License" id="caption" />
  16.  
  17. <vbox flex="1">    
  18.  <hbox flex="1">
  19.     <textbox id="lic" multiline="true" rows="20" cols="70" readonly="true" />
  20.  </hbox>
  21.  <hbox>
  22.     <button label="Accept" oncommand="FlashVDLic.writeOk();" />
  23.     <button label="Decline" oncommand="window.close();" />    
  24.  </hbox>
  25. </vbox>
  26.  
  27.     
  28. </groupbox>
  29.  
  30.  
  31. </window>
  32.  
  33.